home *** CD-ROM | disk | FTP | other *** search
/ Feast Of Love Press Kit / Feast of Love Press Kit.iso / pc / intro.dxr / Internal_26_dynTextButton_v1b.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2007-08-07  |  467 b   |  20 lines

  1. function formatText(myText, mySize, myColor)
  2. {
  3.    textClip_mc.myText_txt.text = String(myText);
  4.    textClip_mc.myText_txt.autoSize = true;
  5.    myFormat = new TextFormat();
  6.    myFormat.size = mySize;
  7.    myFormat.color = myColor;
  8.    textClip_mc.myText_txt.setTextFormat(myFormat);
  9. }
  10. textClip_mc.onRollOver = function()
  11. {
  12.    getUrl("ROLLOVER", "");
  13. };
  14. textClip_mc.onRollOut = function()
  15. {
  16.    getUrl("ROLLOUT", "");
  17. };
  18. getUrl("INITIALIZE", "");
  19. stop();
  20.